home *** CD-ROM | disk | FTP | other *** search
/ Computer Shopper 240 (DVD) / Issue 240 - February 2008 - DPCS0208DVD.ISO / BO Expert tools / AutoHotKey / Source / AutoHotkey104702_source.exe / source / lib_pcre / pcre / pcre_internal.h < prev    next >
Encoding:
C/C++ Source or Header  |  2007-01-11  |  42.9 KB  |  1,074 lines

  1. /*************************************************
  2. *      Perl-Compatible Regular Expressions       *
  3. *************************************************/
  4.  
  5.  
  6. /* PCRE is a library of functions to support regular expressions whose syntax
  7. and semantics are as close as possible to those of the Perl 5 language.
  8.  
  9.                        Written by Philip Hazel
  10.            Copyright (c) 1997-2006 University of Cambridge
  11.  
  12. -----------------------------------------------------------------------------
  13. Redistribution and use in source and binary forms, with or without
  14. modification, are permitted provided that the following conditions are met:
  15.  
  16.     * Redistributions of source code must retain the above copyright notice,
  17.       this list of conditions and the following disclaimer.
  18.  
  19.     * Redistributions in binary form must reproduce the above copyright
  20.       notice, this list of conditions and the following disclaimer in the
  21.       documentation and/or other materials provided with the distribution.
  22.  
  23.     * Neither the name of the University of Cambridge nor the names of its
  24.       contributors may be used to endorse or promote products derived from
  25.       this software without specific prior written permission.
  26.  
  27. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
  28. AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  29. IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  30. ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
  31. LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
  32. CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
  33. SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
  34. INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
  35. CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  36. ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
  37. POSSIBILITY OF SUCH DAMAGE.
  38. -----------------------------------------------------------------------------
  39. */
  40.  
  41. /* This header contains definitions that are shared between the different
  42. modules, but which are not relevant to the exported API. This includes some
  43. functions whose names all begin with "_pcre_". */
  44.  
  45. #ifndef PCRE_INTERNAL_H
  46. #define PCRE_INTERNAL_H
  47.  
  48. /* Define DEBUG to get debugging output on stdout. */
  49.  
  50. #if 0
  51. #define DEBUG
  52. #endif
  53.  
  54. /* Use a macro for debugging printing, 'cause that eliminates the use of #ifdef
  55. inline, and there are *still* stupid compilers about that don't like indented
  56. pre-processor statements, or at least there were when I first wrote this. After
  57. all, it had only been about 10 years then...
  58.  
  59. It turns out that the Mac Debugging.h header also defines the macro DPRINTF, so
  60. be absolutely sure we get our version. */
  61.  
  62. #undef DPRINTF
  63. #ifdef DEBUG
  64. #define DPRINTF(p) printf p
  65. #else
  66. #define DPRINTF(p) /* Nothing */
  67. #endif
  68.  
  69.  
  70. /* Get the definitions provided by running "configure" */
  71.  
  72. #include "config.h"
  73.  
  74. /* Standard C headers plus the external interface definition. The only time
  75. setjmp and stdarg are used is when NO_RECURSE is set. */
  76.  
  77. #include <ctype.h>
  78. #include <limits.h>
  79. #include <setjmp.h>
  80. #include <stdarg.h>
  81. #include <stddef.h>
  82. #include <stdio.h>
  83. #include <stdlib.h>
  84. #include <string.h>
  85.  
  86. #ifndef PCRE_SPY
  87. #define PCRE_DEFINITION       /* Win32 __declspec(export) trigger for .dll */
  88. #endif
  89.  
  90. /* We need to have types that specify unsigned 16-bit and 32-bit integers. We
  91. cannot determine these outside the compilation (e.g. by running a program as
  92. part of "configure") because PCRE is often cross-compiled for use on other
  93. systems. Instead we make use of the maximum sizes that are available at
  94. preprocessor time in standard C environments. */
  95.  
  96. #if USHRT_MAX == 65535
  97.   typedef unsigned short pcre_uint16;
  98. #elif UINT_MAX == 65535
  99.   typedef unsigned int pcre_uint16;
  100. #else
  101.   #error Cannot determine a type for 16-bit unsigned integers
  102. #endif
  103.  
  104. #if UINT_MAX == 4294967295
  105.   typedef unsigned int pcre_uint32;
  106. #elif ULONG_MAX == 4294967295
  107.   typedef unsigned long int pcre_uint32;
  108. #else
  109.   #error Cannot determine a type for 32-bit unsigned integers
  110. #endif
  111.  
  112. /* All character handling must be done as unsigned characters. Otherwise there
  113. are problems with top-bit-set characters and functions such as isspace().
  114. However, we leave the interface to the outside world as char *, because that
  115. should make things easier for callers. We define a short type for unsigned char
  116. to save lots of typing. I tried "uchar", but it causes problems on Digital
  117. Unix, where it is defined in sys/types, so use "uschar" instead. */
  118.  
  119. typedef unsigned char uschar;
  120.  
  121. /* This is an unsigned int value that no character can ever have. UTF-8
  122. characters only go up to 0x7fffffff (though Unicode doesn't go beyond
  123. 0x0010ffff). */
  124.  
  125. #define NOTACHAR 0xffffffff
  126.  
  127. /* PCRE is able to support several different kinds of newline (CR, LF, CRLF,
  128. and "all" at present). The following macros are used to package up testing for
  129. newlines. NLBLOCK, PSSTART, and PSEND are defined in the various modules to
  130. indicate in which datablock the parameters exist, and what the start/end of
  131. string field names are. */
  132.  
  133. #define NLTYPE_FIXED   0     /* Newline is a fixed length string */
  134. #define NLTYPE_ANY     1     /* Newline is any Unicode line ending */
  135.  
  136. /* This macro checks for a newline at the given position */
  137.  
  138. #ifdef SUPPORT_UTF8 /* AutoHotkey. */
  139. #define IS_NEWLINE(p) \
  140.   ((NLBLOCK->nltype != NLTYPE_FIXED)? \
  141.     ((p) < NLBLOCK->PSEND && \
  142.      _pcre_is_newline((p), NLBLOCK->PSEND, &(NLBLOCK->nllen), utf8) \
  143.     ) \
  144.     : \
  145.     ((p) <= NLBLOCK->PSEND - NLBLOCK->nllen && \
  146.      (p)[0] == NLBLOCK->nl[0] && \
  147.      (NLBLOCK->nllen == 1 || (p)[1] == NLBLOCK->nl[1]) \
  148.     ) \
  149.   )
  150. #else /* AutoHotkey: Same as above except for FALSE vs. utf8. */
  151. #define IS_NEWLINE(p) \
  152.   ((NLBLOCK->nltype != NLTYPE_FIXED)? \
  153.     ((p) < NLBLOCK->PSEND && \
  154.      _pcre_is_newline((p), NLBLOCK->PSEND, &(NLBLOCK->nllen), FALSE) \
  155.     ) \
  156.     : \
  157.     ((p) <= NLBLOCK->PSEND - NLBLOCK->nllen && \
  158.      (p)[0] == NLBLOCK->nl[0] && \
  159.      (NLBLOCK->nllen == 1 || (p)[1] == NLBLOCK->nl[1]) \
  160.     ) \
  161.   )
  162. #endif /* AutoHotkey. */
  163.  
  164. /* This macro checks for a newline immediately preceding the given position */
  165.  
  166. #ifdef SUPPORT_UTF8 /* AutoHotkey. */
  167. #define WAS_NEWLINE(p) \
  168.   ((NLBLOCK->nltype != NLTYPE_FIXED)? \
  169.     ((p) > NLBLOCK->PSSTART && \
  170.      _pcre_was_newline((p), NLBLOCK->PSSTART, &(NLBLOCK->nllen), utf8) \
  171.     ) \
  172.     : \
  173.     ((p) >= NLBLOCK->PSSTART + NLBLOCK->nllen && \
  174.      (p)[-NLBLOCK->nllen] == NLBLOCK->nl[0] && \
  175.      (NLBLOCK->nllen == 1 || (p)[-NLBLOCK->nllen+1] == NLBLOCK->nl[1]) \
  176.     ) \
  177.   )
  178. #else /* AutoHotkey: Same as above except for FALSE vs. utf8. */
  179. #define WAS_NEWLINE(p) \
  180.   ((NLBLOCK->nltype != NLTYPE_FIXED)? \
  181.     ((p) > NLBLOCK->PSSTART && \
  182.      _pcre_was_newline((p), NLBLOCK->PSSTART, &(NLBLOCK->nllen), FALSE) \
  183.     ) \
  184.     : \
  185.     ((p) >= NLBLOCK->PSSTART + NLBLOCK->nllen && \
  186.      (p)[-NLBLOCK->nllen] == NLBLOCK->nl[0] && \
  187.      (NLBLOCK->nllen == 1 || (p)[-NLBLOCK->nllen+1] == NLBLOCK->nl[1]) \
  188.     ) \
  189.   )
  190. #endif /* AutoHotkey. */
  191.  
  192. /* When PCRE is compiled as a C++ library, the subject pointer can be replaced
  193. with a custom type. This makes it possible, for example, to allow pcre_exec()
  194. to process subject strings that are discontinuous by using a smart pointer
  195. class. It must always be possible to inspect all of the subject string in
  196. pcre_exec() because of the way it backtracks. Two macros are required in the
  197. normal case, for sign-unspecified and unsigned char pointers. The former is
  198. used for the external interface and appears in pcre.h, which is why its name
  199. must begin with PCRE_. */
  200.  
  201. #ifdef CUSTOM_SUBJECT_PTR
  202. #define PCRE_SPTR CUSTOM_SUBJECT_PTR
  203. #define USPTR CUSTOM_SUBJECT_PTR
  204. #else
  205. #define PCRE_SPTR const char *
  206. #define USPTR const unsigned char *
  207. #endif
  208.  
  209. /* Include the public PCRE header and the definitions of UCP character property
  210. values. */
  211.  
  212. #include "pcre.h"
  213. #include "ucp.h"
  214.  
  215. /* When compiling for use with the Virtual Pascal compiler, these functions
  216. need to have their names changed. PCRE must be compiled with the -DVPCOMPAT
  217. option on the command line. */
  218.  
  219. #ifdef VPCOMPAT
  220. #define strncmp(s1,s2,m) _strncmp(s1,s2,m)
  221. #define memcpy(d,s,n)    _memcpy(d,s,n)
  222. #define memmove(d,s,n)   _memmove(d,s,n)
  223. #define memset(s,c,n)    _memset(s,c,n)
  224. #else  /* VPCOMPAT */
  225.  
  226. /* To cope with SunOS4 and other systems that lack memmove() but have bcopy(),
  227. define a macro for memmove() if HAVE_MEMMOVE is false, provided that HAVE_BCOPY
  228. is set. Otherwise, include an emulating function for those systems that have
  229. neither (there some non-Unix environments where this is the case). This assumes
  230. that all calls to memmove are moving strings upwards in store, which is the
  231. case in PCRE. */
  232.  
  233. #if ! HAVE_MEMMOVE
  234. #undef  memmove        /* some systems may have a macro */
  235. #if HAVE_BCOPY
  236. #define memmove(a, b, c) bcopy(b, a, c)
  237. #else  /* HAVE_BCOPY */
  238. static void *
  239. pcre_memmove(unsigned char *dest, const unsigned char *src, size_t n)
  240. {
  241. size_t i;
  242. dest += n;
  243. src += n;
  244. for (i = 0; i < n; ++i) *(--dest) =  *(--src);
  245. return dest;
  246. }
  247. #define memmove(a, b, c) pcre_memmove(a, b, c)
  248. #endif   /* not HAVE_BCOPY */
  249. #endif   /* not HAVE_MEMMOVE */
  250. #endif   /* not VPCOMPAT */
  251.  
  252.  
  253. /* PCRE keeps offsets in its compiled code as 2-byte quantities (always stored
  254. in big-endian order) by default. These are used, for example, to link from the
  255. start of a subpattern to its alternatives and its end. The use of 2 bytes per
  256. offset limits the size of the compiled regex to around 64K, which is big enough
  257. for almost everybody. However, I received a request for an even bigger limit.
  258. For this reason, and also to make the code easier to maintain, the storing and
  259. loading of offsets from the byte string is now handled by the macros that are
  260. defined here.
  261.  
  262. The macros are controlled by the value of LINK_SIZE. This defaults to 2 in
  263. the config.h file, but can be overridden by using -D on the command line. This
  264. is automated on Unix systems via the "configure" command. */
  265.  
  266. #if LINK_SIZE == 2
  267.  
  268. #define PUT(a,n,d)   \
  269.   (a[n] = (d) >> 8), \
  270.   (a[(n)+1] = (d) & 255)
  271.  
  272. #define GET(a,n) \
  273.   (((a)[n] << 8) | (a)[(n)+1])
  274.  
  275. #define MAX_PATTERN_SIZE (1 << 16)
  276.  
  277.  
  278. #elif LINK_SIZE == 3
  279.  
  280. #define PUT(a,n,d)       \
  281.   (a[n] = (d) >> 16),    \
  282.   (a[(n)+1] = (d) >> 8), \
  283.   (a[(n)+2] = (d) & 255)
  284.  
  285. #define GET(a,n) \
  286.   (((a)[n] << 16) | ((a)[(n)+1] << 8) | (a)[(n)+2])
  287.  
  288. #define MAX_PATTERN_SIZE (1 << 24)
  289.  
  290.  
  291. #elif LINK_SIZE == 4
  292.  
  293. #define PUT(a,n,d)        \
  294.   (a[n] = (d) >> 24),     \
  295.   (a[(n)+1] = (d) >> 16), \
  296.   (a[(n)+2] = (d) >> 8),  \
  297.   (a[(n)+3] = (d) & 255)
  298.  
  299. #define GET(a,n) \
  300.   (((a)[n] << 24) | ((a)[(n)+1] << 16) | ((a)[(n)+2] << 8) | (a)[(n)+3])
  301.  
  302. #define MAX_PATTERN_SIZE (1 << 30)   /* Keep it positive */
  303.  
  304.  
  305. #else
  306. #error LINK_SIZE must be either 2, 3, or 4
  307. #endif
  308.  
  309.  
  310. /* Convenience macro defined in terms of the others */
  311.  
  312. #define PUTINC(a,n,d)   PUT(a,n,d), a += LINK_SIZE
  313.  
  314.  
  315. /* PCRE uses some other 2-byte quantities that do not change when the size of
  316. offsets changes. There are used for repeat counts and for other things such as
  317. capturing parenthesis numbers in back references. */
  318.  
  319. #define PUT2(a,n,d)   \
  320.   a[n] = (d) >> 8; \
  321.   a[(n)+1] = (d) & 255
  322.  
  323. #define GET2(a,n) \
  324.   (((a)[n] << 8) | (a)[(n)+1])
  325.  
  326. #define PUT2INC(a,n,d)  PUT2(a,n,d), a += 2
  327.  
  328.  
  329. /* When UTF-8 encoding is being used, a character is no longer just a single
  330. byte. The macros for character handling generate simple sequences when used in
  331. byte-mode, and more complicated ones for UTF-8 characters. */
  332.  
  333. #ifndef SUPPORT_UTF8
  334. #define GETCHAR(c, eptr) c = *eptr;
  335. #define GETCHARTEST(c, eptr) c = *eptr;
  336. #define GETCHARINC(c, eptr) c = *eptr++;
  337. #define GETCHARINCTEST(c, eptr) c = *eptr++;
  338. #define GETCHARLEN(c, eptr, len) c = *eptr;
  339. #define BACKCHAR(eptr)
  340.  
  341. #else   /* SUPPORT_UTF8 */
  342.  
  343. /* Get the next UTF-8 character, not advancing the pointer. This is called when
  344. we know we are in UTF-8 mode. */
  345.  
  346. #define GETCHAR(c, eptr) \
  347.   c = *eptr; \
  348.   if (c >= 0xc0) \
  349.     { \
  350.     int gcii; \
  351.     int gcaa = _pcre_utf8_table4[c & 0x3f];  /* Number of additional bytes */ \
  352.     int gcss = 6*gcaa; \
  353.     c = (c & _pcre_utf8_table3[gcaa]) << gcss; \
  354.     for (gcii = 1; gcii <= gcaa; gcii++) \
  355.       { \
  356.       gcss -= 6; \
  357.       c |= (eptr[gcii] & 0x3f) << gcss; \
  358.       } \
  359.     }
  360.  
  361. /* Get the next UTF-8 character, testing for UTF-8 mode, and not advancing the
  362. pointer. */
  363.  
  364. #define GETCHARTEST(c, eptr) \
  365.   c = *eptr; \
  366.   if (utf8 && c >= 0xc0) \
  367.     { \
  368.     int gcii; \
  369.     int gcaa = _pcre_utf8_table4[c & 0x3f];  /* Number of additional bytes */ \
  370.     int gcss = 6*gcaa; \
  371.     c = (c & _pcre_utf8_table3[gcaa]) << gcss; \
  372.     for (gcii = 1; gcii <= gcaa; gcii++) \
  373.       { \
  374.       gcss -= 6; \
  375.       c |= (eptr[gcii] & 0x3f) << gcss; \
  376.       } \
  377.     }
  378.  
  379. /* Get the next UTF-8 character, advancing the pointer. This is called when we
  380. know we are in UTF-8 mode. */
  381.  
  382. #define GETCHARINC(c, eptr) \
  383.   c = *eptr++; \
  384.   if (c >= 0xc0) \
  385.     { \
  386.     int gcaa = _pcre_utf8_table4[c & 0x3f];  /* Number of additional bytes */ \
  387.     int gcss = 6*gcaa; \
  388.     c = (c & _pcre_utf8_table3[gcaa]) << gcss; \
  389.     while (gcaa-- > 0) \
  390.       { \
  391.       gcss -= 6; \
  392.       c |= (*eptr++ & 0x3f) << gcss; \
  393.       } \
  394.     }
  395.  
  396. /* Get the next character, testing for UTF-8 mode, and advancing the pointer */
  397.  
  398. #define GETCHARINCTEST(c, eptr) \
  399.   c = *eptr++; \
  400.   if (utf8 && c >= 0xc0) \
  401.     { \
  402.     int gcaa = _pcre_utf8_table4[c & 0x3f];  /* Number of additional bytes */ \
  403.     int gcss = 6*gcaa; \
  404.     c = (c & _pcre_utf8_table3[gcaa]) << gcss; \
  405.     while (gcaa-- > 0) \
  406.       { \
  407.       gcss -= 6; \
  408.       c |= (*eptr++ & 0x3f) << gcss; \
  409.       } \
  410.     }
  411.  
  412. /* Get the next UTF-8 character, not advancing the pointer, incrementing length
  413. if there are extra bytes. This is called when we know we are in UTF-8 mode. */
  414.  
  415. #define GETCHARLEN(c, eptr, len) \
  416.   c = *eptr; \
  417.   if (c >= 0xc0) \
  418.     { \
  419.     int gcii; \
  420.     int gcaa = _pcre_utf8_table4[c & 0x3f];  /* Number of additional bytes */ \
  421.     int gcss = 6*gcaa; \
  422.     c = (c & _pcre_utf8_table3[gcaa]) << gcss; \
  423.     for (gcii = 1; gcii <= gcaa; gcii++) \
  424.       { \
  425.       gcss -= 6; \
  426.       c |= (eptr[gcii] & 0x3f) << gcss; \
  427.       } \
  428.     len += gcaa; \
  429.     }
  430.  
  431. /* If the pointer is not at the start of a character, move it back until
  432. it is. Called only in UTF-8 mode. */
  433.  
  434. #define BACKCHAR(eptr) while((*eptr & 0xc0) == 0x80) eptr--;
  435.  
  436. #endif /* SUPPORT_UTF8 */
  437.  
  438.  
  439. /* In case there is no definition of offsetof() provided - though any proper
  440. Standard C system should have one. */
  441.  
  442. #ifndef offsetof
  443. #define offsetof(p_type,field) ((size_t)&(((p_type *)0)->field))
  444. #endif
  445.  
  446.  
  447. /* These are the public options that can change during matching. */
  448.  
  449. #define PCRE_IMS (PCRE_CASELESS|PCRE_MULTILINE|PCRE_DOTALL)
  450.  
  451. /* Private options flags start at the most significant end of the four bytes.
  452. The public options defined in pcre.h start at the least significant end. Make
  453. sure they don't overlap! The bits are getting a bit scarce now -- when we run
  454. out, there is a dummy word in the structure that could be used for the private
  455. bits. */
  456.  
  457. #define PCRE_NOPARTIAL     0x80000000  /* can't use partial with this regex */
  458. #define PCRE_FIRSTSET      0x40000000  /* first_byte is set */
  459. #define PCRE_REQCHSET      0x20000000  /* req_byte is set */
  460. #define PCRE_STARTLINE     0x10000000  /* start after \n for multiline */
  461. #define PCRE_JCHANGED      0x08000000  /* j option changes within regex */
  462.  
  463. /* Options for the "extra" block produced by pcre_study(). */
  464.  
  465. #define PCRE_STUDY_MAPPED   0x01     /* a map of starting chars exists */
  466.  
  467. /* Masks for identifying the public options that are permitted at compile
  468. time, run time, or study time, respectively. */
  469.  
  470. #define PCRE_NEWLINE_BITS (PCRE_NEWLINE_CR|PCRE_NEWLINE_LF|PCRE_NEWLINE_ANY)
  471.  
  472. #define PUBLIC_OPTIONS \
  473.   (PCRE_CASELESS|PCRE_EXTENDED|PCRE_ANCHORED|PCRE_MULTILINE| \
  474.    PCRE_DOTALL|PCRE_DOLLAR_ENDONLY|PCRE_EXTRA|PCRE_UNGREEDY|PCRE_UTF8| \
  475.    PCRE_NO_AUTO_CAPTURE|PCRE_NO_UTF8_CHECK|PCRE_AUTO_CALLOUT|PCRE_FIRSTLINE| \
  476.    PCRE_DUPNAMES|PCRE_NEWLINE_BITS)
  477.  
  478. #define PUBLIC_EXEC_OPTIONS \
  479.   (PCRE_ANCHORED|PCRE_NOTBOL|PCRE_NOTEOL|PCRE_NOTEMPTY|PCRE_NO_UTF8_CHECK| \
  480.    PCRE_PARTIAL|PCRE_NEWLINE_BITS)
  481.  
  482. #define PUBLIC_DFA_EXEC_OPTIONS \
  483.   (PCRE_ANCHORED|PCRE_NOTBOL|PCRE_NOTEOL|PCRE_NOTEMPTY|PCRE_NO_UTF8_CHECK| \
  484.    PCRE_PARTIAL|PCRE_DFA_SHORTEST|PCRE_DFA_RESTART|PCRE_NEWLINE_BITS)
  485.  
  486. #define PUBLIC_STUDY_OPTIONS 0   /* None defined */
  487.  
  488. /* Magic number to provide a small check against being handed junk. Also used
  489. to detect whether a pattern was compiled on a host of different endianness. */
  490.  
  491. #define MAGIC_NUMBER  0x50435245UL   /* 'PCRE' */
  492.  
  493. /* Negative values for the firstchar and reqchar variables */
  494.  
  495. #define REQ_UNSET (-2)
  496. #define REQ_NONE  (-1)
  497.  
  498. /* The maximum remaining length of subject we are prepared to search for a
  499. req_byte match. */
  500.  
  501. #define REQ_BYTE_MAX 1000
  502.  
  503. /* Flags added to firstbyte or reqbyte; a "non-literal" item is either a
  504. variable-length repeat, or a anything other than literal characters. */
  505.  
  506. #define REQ_CASELESS 0x0100    /* indicates caselessness */
  507. #define REQ_VARY     0x0200    /* reqbyte followed non-literal item */
  508.  
  509. /* Miscellaneous definitions */
  510.  
  511. typedef int BOOL;
  512.  
  513. #define FALSE   0
  514. #define TRUE    1
  515.  
  516. /* Escape items that are just an encoding of a particular data value. */
  517.  
  518. #ifndef ESC_e
  519. #define ESC_e 27
  520. #endif
  521.  
  522. #ifndef ESC_f
  523. #define ESC_f '\f'
  524. #endif
  525.  
  526. #ifndef ESC_n
  527. #define ESC_n '\n'
  528. #endif
  529.  
  530. #ifndef ESC_r
  531. #define ESC_r '\r'
  532. #endif
  533.  
  534. /* We can't officially use ESC_t because it is a POSIX reserved identifier
  535. (presumably because of all the others like size_t). */
  536.  
  537. #ifndef ESC_tee
  538. #define ESC_tee '\t'
  539. #endif
  540.  
  541. /* Codes for different types of Unicode property */
  542.  
  543. #define PT_ANY        0    /* Any property - matches all chars */
  544. #define PT_LAMP       1    /* L& - the union of Lu, Ll, Lt */
  545. #define PT_GC         2    /* General characteristic (e.g. L) */
  546. #define PT_PC         3    /* Particular characteristic (e.g. Lu) */
  547. #define PT_SC         4    /* Script (e.g. Han) */
  548.  
  549. /* Flag bits and data types for the extended class (OP_XCLASS) for classes that
  550. contain UTF-8 characters with values greater than 255. */
  551.  
  552. #define XCL_NOT    0x01    /* Flag: this is a negative class */
  553. #define XCL_MAP    0x02    /* Flag: a 32-byte map is present */
  554.  
  555. #define XCL_END       0    /* Marks end of individual items */
  556. #define XCL_SINGLE    1    /* Single item (one multibyte char) follows */
  557. #define XCL_RANGE     2    /* A range (two multibyte chars) follows */
  558. #define XCL_PROP      3    /* Unicode property (2-byte property code follows) */
  559. #define XCL_NOTPROP   4    /* Unicode inverted property (ditto) */
  560.  
  561. /* These are escaped items that aren't just an encoding of a particular data
  562. value such as \n. They must have non-zero values, as check_escape() returns
  563. their negation. Also, they must appear in the same order as in the opcode
  564. definitions below, up to ESC_z. There's a dummy for OP_ANY because it
  565. corresponds to "." rather than an escape sequence. The final one must be
  566. ESC_REF as subsequent values are used for backreferences (\1, \2, \3, etc).
  567. There are two tests in the code for an escape greater than ESC_b and less than
  568. ESC_Z to detect the types that may be repeated. These are the types that
  569. consume characters. If any new escapes are put in between that don't consume a
  570. character, that code will have to change. */
  571.  
  572. enum { ESC_A = 1, ESC_G, ESC_B, ESC_b, ESC_D, ESC_d, ESC_S, ESC_s, ESC_W,
  573.        ESC_w, ESC_dum1, ESC_C, ESC_P, ESC_p, ESC_R, ESC_X, ESC_Z, ESC_z,
  574.        ESC_E, ESC_Q, ESC_k, ESC_REF };
  575.  
  576.  
  577. /* Opcode table: OP_BRA must be last, as all values >= it are used for brackets
  578. that extract substrings. Starting from 1 (i.e. after OP_END), the values up to
  579. OP_EOD must correspond in order to the list of escapes immediately above.
  580.  
  581. To keep stored, compiled patterns compatible, new opcodes should be added
  582. immediately before OP_BRA, where (since release 7.0) a gap is left for this
  583. purpose.
  584.  
  585. *** NOTE NOTE NOTE *** Whenever this list is updated, the two macro definitions
  586. that follow must also be updated to match. There is also a table called
  587. "coptable" in pcre_dfa_exec.c that must be updated. */
  588.  
  589. enum {
  590.   OP_END,            /* 0 End of pattern */
  591.  
  592.   /* Values corresponding to backslashed metacharacters */
  593.  
  594.   OP_SOD,            /* 1 Start of data: \A */
  595.   OP_SOM,            /* 2 Start of match (subject + offset): \G */
  596.   OP_NOT_WORD_BOUNDARY,  /*  3 \B */
  597.   OP_WORD_BOUNDARY,      /*  4 \b */
  598.   OP_NOT_DIGIT,          /*  5 \D */
  599.   OP_DIGIT,              /*  6 \d */
  600.   OP_NOT_WHITESPACE,     /*  7 \S */
  601.   OP_WHITESPACE,         /*  8 \s */
  602.   OP_NOT_WORDCHAR,       /*  9 \W */
  603.   OP_WORDCHAR,           /* 10 \w */
  604.   OP_ANY,            /* 11 Match any character */
  605.   OP_ANYBYTE,        /* 12 Match any byte (\C); different to OP_ANY for UTF-8 */
  606.   OP_NOTPROP,        /* 13 \P (not Unicode property) */
  607.   OP_PROP,           /* 14 \p (Unicode property) */
  608.   OP_ANYNL,          /* 15 \R (any newline sequence) */
  609.   OP_EXTUNI,         /* 16 \X (extended Unicode sequence */
  610.   OP_EODN,           /* 17 End of data or \n at end of data: \Z. */
  611.   OP_EOD,            /* 18 End of data: \z */
  612.  
  613.   OP_OPT,            /* 19 Set runtime options */
  614.   OP_CIRC,           /* 20 Start of line - varies with multiline switch */
  615.   OP_DOLL,           /* 21 End of line - varies with multiline switch */
  616.   OP_CHAR,           /* 22 Match one character, casefully */
  617.   OP_CHARNC,         /* 23 Match one character, caselessly */
  618.   OP_NOT,            /* 24 Match one character, not the following one */
  619.  
  620.   OP_STAR,           /* 25 The maximizing and minimizing versions of */
  621.   OP_MINSTAR,        /* 26 these six opcodes must come in pairs, with */
  622.   OP_PLUS,           /* 27 the minimizing one second. */
  623.   OP_MINPLUS,        /* 28 This first set applies to single characters.*/
  624.   OP_QUERY,          /* 29 */
  625.   OP_MINQUERY,       /* 30 */
  626.  
  627.   OP_UPTO,           /* 31 From 0 to n matches */
  628.   OP_MINUPTO,        /* 32 */
  629.   OP_EXACT,          /* 33 Exactly n matches */
  630.  
  631.   OP_POSSTAR,        /* 34 Possessified star */
  632.   OP_POSPLUS,        /* 35 Possessified plus */
  633.   OP_POSQUERY,       /* 36 Posesssified query */
  634.   OP_POSUPTO,        /* 37 Possessified upto */
  635.  
  636.   OP_NOTSTAR,        /* 38 The maximizing and minimizing versions of */
  637.   OP_NOTMINSTAR,     /* 39 these six opcodes must come in pairs, with */
  638.   OP_NOTPLUS,        /* 40 the minimizing one second. They must be in */
  639.   OP_NOTMINPLUS,     /* 41 exactly the same order as those above. */
  640.   OP_NOTQUERY,       /* 42 This set applies to "not" single characters. */
  641.   OP_NOTMINQUERY,    /* 43 */
  642.  
  643.   OP_NOTUPTO,        /* 44 From 0 to n matches */
  644.   OP_NOTMINUPTO,     /* 45 */
  645.   OP_NOTEXACT,       /* 46 Exactly n matches */
  646.  
  647.   OP_NOTPOSSTAR,     /* 47 Possessified versions */
  648.   OP_NOTPOSPLUS,     /* 48 */
  649.   OP_NOTPOSQUERY,    /* 49 */
  650.   OP_NOTPOSUPTO,     /* 50 */
  651.  
  652.   OP_TYPESTAR,       /* 51 The maximizing and minimizing versions of */
  653.   OP_TYPEMINSTAR,    /* 52 these six opcodes must come in pairs, with */
  654.   OP_TYPEPLUS,       /* 53 the minimizing one second. These codes must */
  655.   OP_TYPEMINPLUS,    /* 54 be in exactly the same order as those above. */
  656.   OP_TYPEQUERY,      /* 55 This set applies to character types such as \d */
  657.   OP_TYPEMINQUERY,   /* 56 */
  658.  
  659.   OP_TYPEUPTO,       /* 57 From 0 to n matches */
  660.   OP_TYPEMINUPTO,    /* 58 */
  661.   OP_TYPEEXACT,      /* 59 Exactly n matches */
  662.  
  663.   OP_TYPEPOSSTAR,    /* 60 Possessified versions */
  664.   OP_TYPEPOSPLUS,    /* 61 */
  665.   OP_TYPEPOSQUERY,   /* 62 */
  666.   OP_TYPEPOSUPTO,    /* 63 */
  667.  
  668.   OP_CRSTAR,         /* 64 The maximizing and minimizing versions of */
  669.   OP_CRMINSTAR,      /* 65 all these opcodes must come in pairs, with */
  670.   OP_CRPLUS,         /* 66 the minimizing one second. These codes must */
  671.   OP_CRMINPLUS,      /* 67 be in exactly the same order as those above. */
  672.   OP_CRQUERY,        /* 68 These are for character classes and back refs */
  673.   OP_CRMINQUERY,     /* 69 */
  674.   OP_CRRANGE,        /* 70 These are different to the three sets above. */
  675.   OP_CRMINRANGE,     /* 71 */
  676.  
  677.   OP_CLASS,          /* 72 Match a character class, chars < 256 only */
  678.   OP_NCLASS,         /* 73 Same, but the bitmap was created from a negative
  679.                            class - the difference is relevant only when a UTF-8
  680.                            character > 255 is encountered. */
  681.  
  682.   OP_XCLASS,         /* 74 Extended class for handling UTF-8 chars within the
  683.                            class. This does both positive and negative. */
  684.  
  685.   OP_REF,            /* 75 Match a back reference */
  686.   OP_RECURSE,        /* 76 Match a numbered subpattern (possibly recursive) */
  687.   OP_CALLOUT,        /* 77 Call out to external function if provided */
  688.  
  689.   OP_ALT,            /* 78 Start of alternation */
  690.   OP_KET,            /* 79 End of group that doesn't have an unbounded repeat */
  691.   OP_KETRMAX,        /* 80 These two must remain together and in this */
  692.   OP_KETRMIN,        /* 81 order. They are for groups the repeat for ever. */
  693.  
  694.   /* The assertions must come before BRA, CBRA, ONCE, and COND.*/
  695.  
  696.   OP_ASSERT,         /* 82 Positive lookahead */
  697.   OP_ASSERT_NOT,     /* 83 Negative lookahead */
  698.   OP_ASSERTBACK,     /* 84 Positive lookbehind */
  699.   OP_ASSERTBACK_NOT, /* 85 Negative lookbehind */
  700.   OP_REVERSE,        /* 86 Move pointer back - used in lookbehind assertions */
  701.  
  702.   /* ONCE, BRA, CBRA, and COND must come after the assertions, with ONCE first,
  703.   as there's a test for >= ONCE for a subpattern that isn't an assertion. */
  704.  
  705.   OP_ONCE,           /* 87 Atomic group */
  706.   OP_BRA,            /* 88 Start of non-capturing bracket */
  707.   OP_CBRA,           /* 89 Start of capturing bracket */
  708.   OP_COND,           /* 90 Conditional group */
  709.  
  710.   /* These three must follow the previous three, in the same order. There's a
  711.   check for >= SBRA to distinguish the two sets. */
  712.  
  713.   OP_SBRA,           /* 91 Start of non-capturing bracket, check empty  */
  714.   OP_SCBRA,          /* 92 Start of capturing bracket, check empty */
  715.   OP_SCOND,          /* 93 Conditional group, check empty */
  716.  
  717.   OP_CREF,           /* 94 Used to hold a capture number as condition */
  718.   OP_RREF,           /* 95 Used to hold a recursion number as condition */
  719.   OP_DEF,            /* 96 The DEFINE condition */
  720.  
  721.   OP_BRAZERO,        /* 97 These two must remain together and in this */
  722.   OP_BRAMINZERO      /* 98 order. */
  723. };
  724.  
  725.  
  726. /* This macro defines textual names for all the opcodes. These are used only
  727. for debugging. The macro is referenced only in pcre_printint.c. */
  728.  
  729. #define OP_NAME_LIST \
  730.   "End", "\\A", "\\G", "\\B", "\\b", "\\D", "\\d",                \
  731.   "\\S", "\\s", "\\W", "\\w", "Any", "Anybyte",                   \
  732.   "notprop", "prop", "anynl", "extuni",                           \
  733.   "\\Z", "\\z",                                                   \
  734.   "Opt", "^", "$", "char", "charnc", "not",                       \
  735.   "*", "*?", "+", "+?", "?", "??", "{", "{", "{",                 \
  736.   "*+","++", "?+", "{",                                           \
  737.   "*", "*?", "+", "+?", "?", "??", "{", "{", "{",                 \
  738.   "*+","++", "?+", "{",                                           \
  739.   "*", "*?", "+", "+?", "?", "??", "{", "{", "{",                 \
  740.   "*+","++", "?+", "{",                                           \
  741.   "*", "*?", "+", "+?", "?", "??", "{", "{",                      \
  742.   "class", "nclass", "xclass", "Ref", "Recurse", "Callout",       \
  743.   "Alt", "Ket", "KetRmax", "KetRmin", "Assert", "Assert not",     \
  744.   "AssertB", "AssertB not", "Reverse",                            \
  745.   "Once", "Bra 0", "Bra", "Cond", "SBra 0", "SBra", "SCond",      \
  746.   "Cond ref", "Cond rec", "Cond def", "Brazero", "Braminzero"
  747.  
  748.  
  749. /* This macro defines the length of fixed length operations in the compiled
  750. regex. The lengths are used when searching for specific things, and also in the
  751. debugging printing of a compiled regex. We use a macro so that it can be
  752. defined close to the definitions of the opcodes themselves.
  753.  
  754. As things have been extended, some of these are no longer fixed lenths, but are
  755. minima instead. For example, the length of a single-character repeat may vary
  756. in UTF-8 mode. The code that uses this table must know about such things. */
  757.  
  758. #define OP_LENGTHS \
  759.   1,                             /* End                                    */ \
  760.   1, 1, 1, 1, 1, 1, 1, 1, 1, 1,  /* \A, \G, \B, \B, \D, \d, \S, \s, \W, \w */ \
  761.   1, 1,                          /* Any, Anybyte                           */ \
  762.   3, 3, 1, 1,                    /* NOTPROP, PROP, EXTUNI, ANYNL           */ \
  763.   1, 1, 2, 1, 1,                 /* \Z, \z, Opt, ^, $                      */ \
  764.   2,                             /* Char  - the minimum length             */ \
  765.   2,                             /* Charnc  - the minimum length           */ \
  766.   2,                             /* not                                    */ \
  767.   /* Positive single-char repeats                            ** These are  */ \
  768.   2, 2, 2, 2, 2, 2,              /* *, *?, +, +?, ?, ??      ** minima in  */ \
  769.   4, 4, 4,                       /* upto, minupto, exact     ** UTF-8 mode */ \
  770.   2, 2, 2, 4,                    /* *+, ++, ?+, upto+                      */ \
  771.   /* Negative single-char repeats - only for chars < 256                   */ \
  772.   2, 2, 2, 2, 2, 2,              /* NOT *, *?, +, +?, ?, ??                */ \
  773.   4, 4, 4,                       /* NOT upto, minupto, exact               */ \
  774.   2, 2, 2, 4,                    /* Possessive *, +, ?, upto               */ \
  775.   /* Positive type repeats                                                 */ \
  776.   2, 2, 2, 2, 2, 2,              /* Type *, *?, +, +?, ?, ??               */ \
  777.   4, 4, 4,                       /* Type upto, minupto, exact              */ \
  778.   2, 2, 2, 4,                    /* Possessive *+, ++, ?+, upto+           */ \
  779.   /* Character class & ref repeats                                         */ \
  780.   1, 1, 1, 1, 1, 1,              /* *, *?, +, +?, ?, ??                    */ \
  781.   5, 5,                          /* CRRANGE, CRMINRANGE                    */ \
  782.  33,                             /* CLASS                                  */ \
  783.  33,                             /* NCLASS                                 */ \
  784.   0,                             /* XCLASS - variable length               */ \
  785.   3,                             /* REF                                    */ \
  786.   1+LINK_SIZE,                   /* RECURSE                                */ \
  787.   2+2*LINK_SIZE,                 /* CALLOUT                                */ \
  788.   1+LINK_SIZE,                   /* Alt                                    */ \
  789.   1+LINK_SIZE,                   /* Ket                                    */ \
  790.   1+LINK_SIZE,                   /* KetRmax                                */ \
  791.   1+LINK_SIZE,                   /* KetRmin                                */ \
  792.   1+LINK_SIZE,                   /* Assert                                 */ \
  793.   1+LINK_SIZE,                   /* Assert not                             */ \
  794.   1+LINK_SIZE,                   /* Assert behind                          */ \
  795.   1+LINK_SIZE,                   /* Assert behind not                      */ \
  796.   1+LINK_SIZE,                   /* Reverse                                */ \
  797.   1+LINK_SIZE,                   /* ONCE                                   */ \
  798.   1+LINK_SIZE,                   /* BRA                                    */ \
  799.   3+LINK_SIZE,                   /* CBRA                                   */ \
  800.   1+LINK_SIZE,                   /* COND                                   */ \
  801.   1+LINK_SIZE,                   /* SBRA                                   */ \
  802.   3+LINK_SIZE,                   /* SCBRA                                  */ \
  803.   1+LINK_SIZE,                   /* SCOND                                  */ \
  804.   3,                             /* CREF                                   */ \
  805.   3,                             /* RREF                                   */ \
  806.   1,                             /* DEF                                    */ \
  807.   1, 1,                          /* BRAZERO, BRAMINZERO                    */ \
  808.  
  809.  
  810. /* A magic value for OP_RREF to indicate the "any recursion" condition. */
  811.  
  812. #define RREF_ANY  0xffff
  813.  
  814. /* Error code numbers. They are given names so that they can more easily be
  815. tracked. */
  816.  
  817. enum { ERR0,  ERR1,  ERR2,  ERR3,  ERR4,  ERR5,  ERR6,  ERR7,  ERR8,  ERR9,
  818.        ERR10, ERR11, ERR12, ERR13, ERR14, ERR15, ERR16, ERR17, ERR18, ERR19,
  819.        ERR20, ERR21, ERR22, ERR23, ERR24, ERR25, ERR26, ERR27, ERR28, ERR29,
  820.        ERR30, ERR31, ERR32, ERR33, ERR34, ERR35, ERR36, ERR37, ERR38, ERR39,
  821.        ERR40, ERR41, ERR42, ERR43, ERR44, ERR45, ERR46, ERR47, ERR48, ERR49,
  822.        ERR50, ERR51, ERR52, ERR53, ERR54, ERR55, ERR56, ERR57 };
  823.  
  824. /* The real format of the start of the pcre block; the index of names and the
  825. code vector run on as long as necessary after the end. We store an explicit
  826. offset to the name table so that if a regex is compiled on one host, saved, and
  827. then run on another where the size of pointers is different, all might still
  828. be well. For the case of compiled-on-4 and run-on-8, we include an extra
  829. pointer that is always NULL. For future-proofing, a few dummy fields were
  830. originally included - even though you can never get this planning right - but
  831. there is only one left now.
  832.  
  833. NOTE NOTE NOTE:
  834. Because people can now save and re-use compiled patterns, any additions to this
  835. structure should be made at the end, and something earlier (e.g. a new
  836. flag in the options or one of the dummy fields) should indicate that the new
  837. fields are present. Currently PCRE always sets the dummy fields to zero.
  838. NOTE NOTE NOTE:
  839. */
  840.  
  841. typedef struct real_pcre {
  842.   pcre_uint32 magic_number;
  843.   pcre_uint32 size;               /* Total that was malloced */
  844.   pcre_uint32 options;
  845.   pcre_uint32 dummy1;             /* For future use, maybe */
  846.  
  847.   pcre_uint16 top_bracket;
  848.   pcre_uint16 top_backref;
  849.   pcre_uint16 first_byte;
  850.   pcre_uint16 req_byte;
  851.   pcre_uint16 name_table_offset;  /* Offset to name table that follows */
  852.   pcre_uint16 name_entry_size;    /* Size of any name items */
  853.   pcre_uint16 name_count;         /* Number of name items */
  854.   pcre_uint16 ref_count;          /* Reference count */
  855.  
  856.   const unsigned char *tables;    /* Pointer to tables or NULL for std */
  857.   const unsigned char *nullpad;   /* NULL padding */
  858. } real_pcre;
  859.  
  860. /* The format of the block used to store data from pcre_study(). The same
  861. remark (see NOTE above) about extending this structure applies. */
  862.  
  863. typedef struct pcre_study_data {
  864.   pcre_uint32 size;               /* Total that was malloced */
  865.   pcre_uint32 options;
  866.   uschar start_bits[32];
  867. } pcre_study_data;
  868.  
  869. /* Structure for passing "static" information around between the functions
  870. doing the compiling, so that they are thread-safe. */
  871.  
  872. typedef struct compile_data {
  873.   const uschar *lcc;            /* Points to lower casing table */
  874.   const uschar *fcc;            /* Points to case-flipping table */
  875.   const uschar *cbits;          /* Points to character type table */
  876.   const uschar *ctypes;         /* Points to table of type maps */
  877.   const uschar *start_workspace;/* The start of working space */
  878.   const uschar *start_code;     /* The start of the compiled code */
  879.   const uschar *start_pattern;  /* The start of the pattern */
  880.   const uschar *end_pattern;    /* The end of the pattern */
  881.   uschar *hwm;                  /* High watermark of workspace */
  882.   uschar *name_table;           /* The name/number table */
  883.   int  names_found;             /* Number of entries so far */
  884.   int  name_entry_size;         /* Size of each entry */
  885.   int  bracount;                /* Count of capturing parens */
  886.   int  top_backref;             /* Maximum back reference */
  887.   unsigned int backref_map;     /* Bitmap of low back refs */
  888.   int  external_options;        /* External (initial) options */
  889.   int  req_varyopt;             /* "After variable item" flag for reqbyte */
  890.   BOOL nopartial;               /* Set TRUE if partial won't work */
  891.   int  nltype;                  /* Newline type */
  892.   int  nllen;                   /* Newline string length */
  893.   uschar nl[4];                 /* Newline string when fixed length */
  894. } compile_data;
  895.  
  896. /* Structure for maintaining a chain of pointers to the currently incomplete
  897. branches, for testing for left recursion. */
  898.  
  899. typedef struct branch_chain {
  900.   struct branch_chain *outer;
  901.   uschar *current;
  902. } branch_chain;
  903.  
  904. /* Structure for items in a linked list that represents an explicit recursive
  905. call within the pattern. */
  906.  
  907. typedef struct recursion_info {
  908.   struct recursion_info *prevrec; /* Previous recursion record (or NULL) */
  909.   int group_num;                /* Number of group that was called */
  910.   const uschar *after_call;     /* "Return value": points after the call in the expr */
  911.   USPTR save_start;             /* Old value of md->start_match */
  912.   int *offset_save;             /* Pointer to start of saved offsets */
  913.   int saved_max;                /* Number of saved offsets */
  914. } recursion_info;
  915.  
  916. /* When compiling in a mode that doesn't use recursive calls to match(),
  917. a structure is used to remember local variables on the heap. It is defined in
  918. pcre_exec.c, close to the match() function, so that it is easy to keep it in
  919. step with any changes of local variable. However, the pointer to the current
  920. frame must be saved in some "static" place over a longjmp(). We declare the
  921. structure here so that we can put a pointer in the match_data structure. NOTE:
  922. This isn't used for a "normal" compilation of pcre. */
  923.  
  924. struct heapframe;
  925.  
  926. /* Structure for building a chain of data for holding the values of the subject
  927. pointer at the start of each subpattern, so as to detect when an empty string
  928. has been matched by a subpattern - to break infinite loops. */
  929.  
  930. typedef struct eptrblock {
  931.   struct eptrblock *epb_prev;
  932.   USPTR epb_saved_eptr;
  933. } eptrblock;
  934.  
  935.  
  936. /* Structure for passing "static" information around between the functions
  937. doing traditional NFA matching, so that they are thread-safe. */
  938.  
  939. typedef struct match_data {
  940.   unsigned long int match_call_count;      /* As it says */
  941.   unsigned long int match_limit;           /* As it says */
  942.   unsigned long int match_limit_recursion; /* As it says */
  943.   int   *offset_vector;         /* Offset vector */
  944.   int    offset_end;            /* One past the end */
  945.   int    offset_max;            /* The maximum usable for return data */
  946.   int    nltype;                /* Newline type */
  947.   int    nllen;                 /* Newline string length */
  948.   uschar nl[4];                 /* Newline string when fixed */
  949.   const uschar *lcc;            /* Points to lower casing table */
  950.   const uschar *ctypes;         /* Points to table of type maps */
  951.   BOOL   offset_overflow;       /* Set if too many extractions */
  952.   BOOL   notbol;                /* NOTBOL flag */
  953.   BOOL   noteol;                /* NOTEOL flag */
  954.   BOOL   utf8;                  /* UTF8 flag */
  955.   BOOL   endonly;               /* Dollar not before final \n */
  956.   BOOL   notempty;              /* Empty string match not wanted */
  957.   BOOL   partial;               /* PARTIAL flag */
  958.   BOOL   hitend;                /* Hit the end of the subject at some point */
  959.   const uschar *start_code;     /* For use when recursing */
  960.   USPTR  start_subject;         /* Start of the subject string */
  961.   USPTR  end_subject;           /* End of the subject string */
  962.   USPTR  start_match;           /* Start of this match attempt */
  963.   USPTR  end_match_ptr;         /* Subject position at end match */
  964.   int    end_offset_top;        /* Highwater mark at end of match */
  965.   int    capture_last;          /* Most recent capture number */
  966.   int    start_offset;          /* The start offset value */
  967.   eptrblock *eptrchain;         /* Chain of eptrblocks for tail recursions */
  968.   int    eptrn;                 /* Next free eptrblock */
  969.   recursion_info *recursive;    /* Linked list of recursion data */
  970.   void  *callout_data;          /* To pass back to callouts */
  971.   struct heapframe *thisframe;  /* Used only when compiling for no recursion */
  972. } match_data;
  973.  
  974. /* A similar structure is used for the same purpose by the DFA matching
  975. functions. */
  976.  
  977. typedef struct dfa_match_data {
  978.   const uschar *start_code;     /* Start of the compiled pattern */
  979.   const uschar *start_subject;  /* Start of the subject string */
  980.   const uschar *end_subject;    /* End of subject string */
  981.   const uschar *tables;         /* Character tables */
  982.   int   moptions;               /* Match options */
  983.   int   poptions;               /* Pattern options */
  984.   int    nltype;                /* Newline type */
  985.   int    nllen;                 /* Newline string length */
  986.   uschar nl[4];                 /* Newline string when fixed */
  987.   void  *callout_data;          /* To pass back to callouts */
  988. } dfa_match_data;
  989.  
  990. /* Bit definitions for entries in the pcre_ctypes table. */
  991.  
  992. #define ctype_space   0x01
  993. #define ctype_letter  0x02
  994. #define ctype_digit   0x04
  995. #define ctype_xdigit  0x08
  996. #define ctype_word    0x10   /* alphameric or '_' */
  997. #define ctype_meta    0x80   /* regexp meta char or zero (end pattern) */
  998.  
  999. /* Offsets for the bitmap tables in pcre_cbits. Each table contains a set
  1000. of bits for a class map. Some classes are built by combining these tables. */
  1001.  
  1002. #define cbit_space     0      /* [:space:] or \s */
  1003. #define cbit_xdigit   32      /* [:xdigit:] */
  1004. #define cbit_digit    64      /* [:digit:] or \d */
  1005. #define cbit_upper    96      /* [:upper:] */
  1006. #define cbit_lower   128      /* [:lower:] */
  1007. #define cbit_word    160      /* [:word:] or \w */
  1008. #define cbit_graph   192      /* [:graph:] */
  1009. #define cbit_print   224      /* [:print:] */
  1010. #define cbit_punct   256      /* [:punct:] */
  1011. #define cbit_cntrl   288      /* [:cntrl:] */
  1012. #define cbit_length  320      /* Length of the cbits table */
  1013.  
  1014. /* Offsets of the various tables from the base tables pointer, and
  1015. total length. */
  1016.  
  1017. #define lcc_offset      0
  1018. #define fcc_offset    256
  1019. #define cbits_offset  512
  1020. #define ctypes_offset (cbits_offset + cbit_length)
  1021. #define tables_length (ctypes_offset + 256)
  1022.  
  1023. /* Layout of the UCP type table that translates property names into types and
  1024. codes. */
  1025.  
  1026. typedef struct {
  1027.   const char *name;
  1028.   pcre_uint16 type;
  1029.   pcre_uint16 value;
  1030. } ucp_type_table;
  1031.  
  1032.  
  1033. /* Internal shared data tables. These are tables that are used by more than one
  1034. of the exported public functions. They have to be "external" in the C sense,
  1035. but are not part of the PCRE public API. The data for these tables is in the
  1036. pcre_tables.c module. */
  1037.  
  1038. #ifdef SUPPORT_UTF8 /* AutoHotkey: Not strictly necessary when last checked, but might help detect unintended usages in the future. */
  1039. extern const int    _pcre_utf8_table1[];
  1040. extern const int    _pcre_utf8_table2[];
  1041. extern const int    _pcre_utf8_table3[];
  1042. extern const uschar _pcre_utf8_table4[];
  1043.  
  1044. extern const int    _pcre_utf8_table1_size;
  1045. #endif /* AutoHotkey. */
  1046.  
  1047. extern const ucp_type_table _pcre_utt[];
  1048. extern const int _pcre_utt_size;
  1049.  
  1050. extern const uschar _pcre_default_tables[];
  1051.  
  1052. extern const uschar _pcre_OP_lengths[];
  1053.  
  1054.  
  1055. /* Internal shared functions. These are functions that are used by more than
  1056. one of the exported public functions. They have to be "external" in the C
  1057. sense, but are not part of the PCRE public API. */
  1058.  
  1059. extern BOOL         _pcre_is_newline(const uschar *, const uschar *, int *,
  1060.                       BOOL);
  1061. extern int          _pcre_ord2utf8(int, uschar *);
  1062. extern real_pcre   *_pcre_try_flipped(const real_pcre *, real_pcre *,
  1063.                       const pcre_study_data *, pcre_study_data *);
  1064. extern int          _pcre_ucp_findprop(const unsigned int, int *, int *);
  1065. extern unsigned int _pcre_ucp_othercase(const unsigned int);
  1066. extern int          _pcre_valid_utf8(const uschar *, int);
  1067. extern BOOL         _pcre_was_newline(const uschar *, const uschar *, int *,
  1068.                       BOOL);
  1069. extern BOOL         _pcre_xclass(int, const uschar *);
  1070.  
  1071. #endif
  1072.  
  1073. /* End of pcre_internal.h */
  1074.